We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { createFileRoute } from '@tanstack/react-router';
import { NotFoundComponent } from './404';
// Catch-all route for unknown paths - renders the 404 page
export const Route = createFileRoute('/{-$locale}/$')({
component: NotFoundComponent,
});